home *** CD-ROM | disk | FTP | other *** search
/ Cobra Utilities for Doom & Doom II / Cobra Utilities For Doom & Doom II - Disc 1.iso / files / level / spdrlmp / spider.bat < prev    next >
Encoding:
DOS Batch File  |  1994-07-18  |  1.1 KB  |  39 lines

  1. rem Don't change the lone echo's (three lines down) they are CTRL-X's
  2. rem I know, I know...Not the best batch programming but hey...IT WORKS!
  3. if exist 151.wad goto regwad else
  4. echo 
  5. echo Hey!  You don't have the 151.wad in the current directory!
  6. echo So let's see if you have 15regwad.zip...
  7. echo 
  8. if exist 15regwad.zip goto unzipit else
  9. echo 
  10. echo Hey!  You don't even have the 15regwad.zip!
  11. echo 
  12. goto end
  13. :regwad
  14. if exist doom.wad goto play else
  15. echo 
  16. echo You need the REGISTERED wad for this!
  17. echo 
  18. goto end
  19. :play
  20. echo 
  21. echo Whoa!  You have everything!  COOL!
  22. echo 
  23. DOOM -FILE 151.WAD -PLAYDEMO SPIDER
  24. echo There, that wasn't so bad now was it...
  25. goto end
  26. :unzipit
  27. echo **********************************************
  28. echo ***** Now starting to unzip 15regwad.zip *****
  29. echo **** Press CTRL-C or CTRL BREAK to cancle ****
  30. echo **********************************************
  31. echo NOTE:  Must have pkunzip in path or current directory :)
  32. echo Have a nice day :)
  33. more
  34. pkunzip 15regwad.zip
  35. echo All Done!  Now starting DOOM!
  36. goto play
  37. :end
  38.  
  39.